bump wificonf version number, remove wl0_wet variable support
authorFelix Fietkau <[email protected]>
Sun, 2 Oct 2005 16:46:30 +0000 (16:46 +0000)
committerFelix Fietkau <[email protected]>
Sun, 2 Oct 2005 16:46:30 +0000 (16:46 +0000)
SVN-Revision: 2022

openwrt/package/wificonf/Makefile
openwrt/package/wificonf/wificonf.c

index 2edab748f4bf856abffc472cc6540749bb463cf5..b9bfb8a389ce79747bd632c3c2575f9d1ea3b377 100644 (file)
@@ -3,7 +3,7 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=wificonf
-PKG_RELEASE:=4
+PKG_RELEASE:=5
 
 PKG_BUILD_DIR:=$(BUILD_DIR)/wificonf
 
index 0d652ee1594296bd00548449f5f08b0934c2e6b5..6bb26b13459dd1e79f4d5d5da2361c27d35ab6db 100644 (file)
@@ -430,7 +430,7 @@ void set_wext_mode(skfd, ifname)
        /* Set operation mode */
        ap = !nvram_match(wl_var("mode"), "sta") && !nvram_match(wl_var("mode"), "wet");
        infra = !nvram_disabled(wl_var("infra"));
-       wet = nvram_enabled(wl_var("wet")) || !nvram_match(wl_var("mode"), "wet");
+       wet = nvram_match(wl_var("mode"), "wet");
 
        wrq.u.mode = (!infra ? IW_MODE_ADHOC : (ap ? IW_MODE_MASTER : (wet ? IW_MODE_REPEAT : IW_MODE_INFRA)));
        IW_SET_EXT_ERR(skfd, ifname, SIOCSIWMODE, &wrq, "Set Mode");